home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Internet Tools 1995 April / Internet Tools.iso / osi / isode / dosisode / DOSISODE80.ZIP / ISODE8.WRK / SUPPORT / MAKE.BAT < prev   
Encoding:
DOS Batch File  |  1992-06-19  |  461 b   |  26 lines

  1. @echo off
  2. if not "%1." == "clean." goto check_tidy
  3.     del *.h
  4.     del *.o
  5.     del *.c
  6.     del isoc.exe
  7.     goto end
  8. :check_tidy
  9. if not "%1." == "tidy." goto check_null
  10.     del *.h
  11.     del *.o
  12.     goto end
  13. :check_null
  14. if not "%1." == "." goto bad_param
  15.     set defines=5
  16.     set dir=support
  17.     call %isode%\utils\cc isoc
  18.     gcc -o isoc @isoc.lnk
  19.     strip isoc
  20.     copy /b %ISODE%\utils\stub.exe+isoc isoc.exe >nul:
  21.     del isoc
  22.     goto end
  23. :bad_param
  24.     echo unknown option %1
  25. :end
  26.